home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Lists / ListLink.cp < prev    next >
Encoding:
Text File  |  1997-06-28  |  242 b   |  15 lines  |  [TEXT/CWIE]

  1. // ListLink.cp
  2.  
  3. #ifndef ListLink_h
  4. #include "ListLink.h"
  5. #endif
  6. #ifndef ListOf_h
  7. #include "ListOf.h"
  8. #endif
  9.  
  10. template < class Target >
  11. ListOf<Target>& ListLink<Target>::DownCast( List& n )
  12.   {
  13.     return static_cast< ListOf<Target>& >( n );
  14.   }
  15.